home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / allscrpt.zip / NOCHANGE.SCR < prev    next >
Text File  |  1986-02-22  |  2KB  |  79 lines

  1. .LINKED SCRIPT FOR NOCHANGE BBS SYSTEMS;
  2. .LINK IT TO YOUR QMODEM PHONE DIRECTORY ENTRY FOR ANY
  3. .NOCHANGE SYSTEM(S).
  4.  
  5. .USE YOUR WORD PROCESSOR TO EDIT THIS FILE TO INCLUDE
  6. .  [1] Your FirstName;LastName;Password
  7. .  You may also wish to change answers to other logon questions
  8.                
  9. .COMMENTS ARE PREDEDED BY A PERIOD & REFER TO THE NEXT COMMAND LINE
  10.  
  11. .Display message on-screen only
  12. NOTE ** LOGON TO NOCHANGE **
  13.  
  14. .The next line says to WAITFOR 60 seconds before halting script
  15. TIMEOUT 60
  16.  
  17. .Set key parameters for NOCHANGE
  18. TURNOFF ECHO
  19. TURNOFF LINEFEED
  20.  
  21. .Call NOCHANGE;
  22. .phone number, bps, comm parameters depend on directory entry #
  23.  
  24. .NOCHANGE 'logon' is one CR                            
  25. SEND "{"
  26.  
  27. .Wait for NOCHANGE to ask if you need LineFeeds
  28. WAITFOR "DO YOU NEED LINEFEEDS AFTER EACH CARRIAGE RETURN (Y/N)"
  29.  
  30. .Reply with Y for YES
  31. SEND "Y{"
  32.  
  33. .Wait for NOCHANGE to ask if your program supports NOCHANGE graphics
  34. WAITFOR "ARE YOU USING A PROGRAM THAT SUPPORTS NOCHANGE GRAPHICS (Y/N)"
  35.  
  36. .Reply with Y for YES if you have read the QMODEM manual
  37. .sections regarding ANSI graphics and music and have set:
  38. .TURNON ANSI
  39. .TURNON MUSIC
  40. .and have modified this file to include additional prompts and responses
  41.  
  42. .Otherwise, reply with N for NO
  43. SEND "N{" 
  44.  
  45. .Wait for NOCHANGE to request your first name
  46. WAITFOR "PLEASE TELL ME YOUR FIRST NAME?"
  47.  
  48. .[1] Reply with your FirstName;LastName;Password for fastest logon
  49. SEND "FIRSTNAME;LASTNAME;FAKE-PASSWORD{"
  50.  
  51. .You may or may not see this prompt, depending on the length of the welcome
  52. .If not, be sure to delete both the next WAITFOR and SEND commands
  53. WAITFOR "<Q>UIT, <S>CROLL, OR ANY KEY TO CONTINUE"
  54.  
  55. .Reply with S for Scroll or Q for QUIT (no CR needed)
  56. SEND "S"
  57.  
  58. .Do you wish to see the scoreboard?
  59. WAITFOR "Do you want to see the System Scoreboard (Y/N)"
  60.  
  61. .Reply with N for NO
  62. SEND "N{"
  63.  
  64. .Check your personal mail?
  65. WAITFOR "Look for your personal mail (Y/N)"
  66.  
  67. .Reply Y for YES or N for NO
  68. .SEND "Y{"
  69.  
  70. .Guess a secret word?
  71. WAITFOR "Want to guess a Secret Word for 5,000 points"
  72.  
  73. .Reply Y for YES
  74. SEND "Y{"
  75.  
  76. .Discontinue script processing; return control to keyboard
  77. RETURN
  78. 
  79.